home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Jul / di9807jp / SFTPCLIENT / About.pas < prev    next >
Pascal/Delphi Source File  |  1998-02-04  |  577b  |  37 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TfrmAbout = class(TForm)
  10.     Panel1: TPanel;
  11.     ProgramIcon: TImage;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Comments: TLabel;
  15.     btnOk: TButton;
  16.     procedure btnOkClick(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   frmAbout: TfrmAbout;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. procedure TfrmAbout.btnOkClick(Sender: TObject);
  31. begin
  32.   close;
  33. end;
  34.  
  35. end.
  36.  
  37.